home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
BORLAND TURBO
/
EXAMPLES.PAK
/
HELLO.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-05-06
|
218 b
|
16 lines
// Borland C++ - (C) Copyright 1991, 1995 by Borland International
/* HELLO.C -- Hello, world */
#include <stdio.h>
#include <conio.h>
int main()
{
printf("Hello, world\n");
getch();
return 0;
}